Uses of Class
observations.Patient

Packages that use Patient
observations The observations package represents the domain layer.  
vitalsFacade This package is the heart of application facade.  
 

Uses of Patient in observations
 

Methods in observations that return Patient
static Patient Patient.get(java.lang.String name)
          Use this one to search a patient by name.
 Patient Patient.persist()
          Registers a patient, means saves patient to memory.
 

Constructors in observations with parameters of type Patient
Measurement(Quantity amount, PhenomenonType phenomenonType, Patient patient, java.util.Date whenObserved)
          Constructs a Measurement object.
Observation(Phenomenon relevantPhenomenon, boolean isPresent, Patient patient, java.util.Date whenObserved)
          Constructs an Observation object.
 

Uses of Patient in vitalsFacade
 

Methods in vitalsFacade that return Patient
 Patient VitalsFacade.getSubject()
          Gets the actual patient object.
 

Constructors in vitalsFacade with parameters of type Patient
VitalsFacade(Patient subject)
          Sole constructor for the application facade.